home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-11-16 | 396 b | 21 lines |
- OBJS = main.obj neko.obj draw.obj draw16.obj draw4.obj bios.obj
- PROGRAM = neko.exg
-
- CC = g:\hc386\bin\hc386
- ASM = g:\386asm\exe\386asm
- LINKER = g:\hc386\bin\386linkp
- RUN386 = d:\run386 -nocrt
- CFLAGS = -UDEBUG
-
- $(PROGRAM): $(OBJS)
- $(RUN386) $(LINKER) @files @libs -stack 30000 -relexe $(PROGRAM) -publist byvalue
-
- .c.obj:
- $(CC) -c $(CFLAGS) $<
-
- .asm.obj:
- $(ASM) $<
-
- clean:
-
-